home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / version / verreg.pas < prev    next >
Pascal/Delphi Source File  |  1995-12-22  |  485b  |  23 lines

  1. unit Verreg;
  2.  
  3. interface
  4.  
  5. uses Classes, DsgnIntf, Version;
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10. procedure Register;
  11. begin
  12.     RegisterComponents('CCI', [TVersionResource]);
  13.     RegisterPropertyEditor(TypeInfo(TFileName), TVersionResource, 'FileName',
  14.         TFilenameProperty);
  15.     RegisterPropertyEditor(TypeInfo(TReadOnlyString), TVersionInfo, '',
  16.         TReadOnlyStringProperty);
  17.     RegisterPropertyEditor(TypeInfo(String), TVersionResource, 'About',
  18.         TAboutProperty);
  19. end;
  20.  
  21.  
  22. end.
  23.